home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Magazine / C_Tutorial / Part-11 / req1 / bitmap.h < prev    next >
C/C++ Source or Header  |  1997-10-26  |  180b  |  13 lines

  1. #ifndef BITMAP_H
  2.  
  3. #define BITMAP_H
  4.  
  5. #include<graphics/gfx.h>
  6. #include<intuition/screens.h>
  7.  
  8. int  createBitmap(void);
  9. void freeBitmap(void);
  10.  
  11. struct BitMap* getBitmap(void);
  12.  
  13. #endif